*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	height: 100%;
	background-image: url(Images/bg.jpg);
	background-size: cover;
	background-position: center;
}

/*
	Upper Part
*/
nav{
	background-color: #DC0A4B;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	font-family: Impact;
}

nav ul{
	padding: 10px;
	display: flex;
	list-style-type: none;
	gap: 1rem;
}

nav ul li a{
	border-right: 2px solid white;
	padding-right: 10px;
	text-decoration: none;
	font-size: 1.5rem;
	color: white;
}

nav ul li a:hover{
	text-decoration: underline;
}

#logo{
	letter-spacing: 2px;
	font-size: 2rem;
	color: white;
}

/*
	Content
*/
.inner_box{
	background-color: white;
	border-right: 2px solid black;
	border-left: 2px solid black;
	padding: 20px;
	margin: 0 auto;
	width: 80%;
	max-height: 100%;
}

.mpara{
	text-align: justify;
}

.para1{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

hr{
	width: 100%;
	border: 1px solid orange;
}

h4{
	float: right; 
	margin-bottom: 10px;
	color: green; 
}

.des1{
	text-align: justify;
}

.para2{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des2{
	text-align: justify;
}

.para3{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des3{
	text-align: justify;
}

.para4{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des4{
	text-align: justify;
}

.para5{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des5{
	text-align: justify;
}

.para6{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des6{
	text-align: justify;
}

.para7{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des7{
	text-align: justify;
}

.para8{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des8{
	text-align: justify;
}

.para9{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des9{
	text-align: justify;
}

.para10{
	font-weight: bold;
	font-style: italic;
	text-align: justify;
}

.des10{
	text-align: justify;
}

.foot{
	text-align: center;
	font-weight: bold;
	font-style: italic;
}
/*
	Adjusting size for mobile devices
*/
@media (max-width: 680px){
	nav{
		flex-direction: column;
		gap: 3rem;
	}

	nav ul{
		border: 1px solid white;
		padding: 10px;
		order: 1;
	}

	nav ul li a{
		padding-right: 10px;
		border-right: 2px solid white;
		font-size: 1.2rem;
	}

	h3{
		font-size: 14px;
		font-weight: bold;
	}

	.mpara{
		font-size: 12px;
	}

	.para1,
	.des1{
		font-size: 12px;
	}

	h4{
		font-size: 12px;
	}

	.para2,
	.des2{
		font-size: 12px;
	}

	.para3,
	.des3{
		font-size: 12px;
	}

	.para4,
	.des4{
		font-size: 12px;
	}

	.para5,
	.des5{
		font-size: 12px;
	}

	.para6,
	.des6{
		font-size: 12px;
	}

	.para7,
	.des7{
		font-size: 12px;
	}

	.para8,
	.des8{
		font-size: 12px;
	}

	.para9,
	.des9{
		font-size: 12px;
	}

	.para10,
	.des10{
		font-size: 12px;
	}

	.foot{
		font-size: 12px;
	}
}